home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
-
- def remove(item, list):
- if item in list:
- list.remove(item)
-
-
-
- def readfile(fn):
- return readopenfile(open(fn, 'r'))
-
-
- def readopenfile(fp):
- return fp.read()
-
-